wanna learn how computers work? learn to code at lowlevel.academy (get 20% with offer code ARMASSEMBLY20)
@Kane01235 ай бұрын
One time fee… what a guy. The courses are timeless but mate how are you going to continue to monetise future courses if all existing people get them for free? Genuinely curious - not trying to be a d bag
@AWIRE_onpc4 ай бұрын
C#
@XyndraNerd4 ай бұрын
what happened to your lip
@peterheggs5125 ай бұрын
honestly, I am by far more concerned about supply chain attacks, which I feel like are more probable to be exploited, have a bigger impact and need less cognitive effort compared to memory vulnerabilities. The sheer amount of libraries used in rust due to user friendly cargo - compared to C/C++ is somewhat scary to me
@scpresearcherssite10545 ай бұрын
Yeah. That is the same as npm and pip
@bdfb-th5ek5 ай бұрын
Those supply chain attacks will need a way to get into each system deeper. So they may need to depend on memory exploits like this in the end
@Zullfix5 ай бұрын
Same thing with every other package manager, like Github Actions. I maintain a fairly large repo that handles user account tokens and I recently wanted to add a job to automatically run my unit tests. I looked on the marketplace and found 9 different packages, and all they do is wrap the test command from the SDK. The scariest part is they had a fairly substantial amounts of downloads, making supply chain attacks fairly easy against any repo making use of those actions.
@peterheggs5125 ай бұрын
@@bdfb-th5ek the problem is that nobody has the time to check all (recursive) dependencies when updating them, while not updating them leaves known vulnerabilities open.. so someone just has to add something malicious to their package edit: Sorry I think I misunderstood you. Yes, for some projects maybe, others can get pretty deep into the system this way already.
@ShinDMitsuki5 ай бұрын
@@bdfb-th5ek Running an executable is a pretty deep in into a system already. Even without root
@zimmerderek5 ай бұрын
Great video, and I'd like to reinforce your comments on the merits of unsafe rust. When we work on audits of rust code, we specifically look for unsafe rust first and give the most attention to that, because it is the most likely place for the serious issues within many open source rust projects.
@JessicaFEREM5 ай бұрын
true it makes it way easier to "ctrl f" it and work on finding a solution.
@rusi62194 ай бұрын
@@JessicaFEREM software future is in great hands if that's the case that you "fix" code by ctrl+f /s
@sylvereleipertz9554 ай бұрын
@rusi6219 what part you didn't understand?
@iykury3 ай бұрын
@@rusi6219did you think they meant find-and-replace? they aren't changing the code; they're just looking at it to check for vulnerabilities
@rusi62193 ай бұрын
@@iykury yes searching bits without understanding the larger context of the codebases such an amazing way to detect vulnerabilities and "fix" them
@pyromechanical23425 ай бұрын
Miri is *extremely* useful! when I was porting an existing C program, miri ended up catching multiple vulnerabilities that otherwise produced no noticeable side effects when running an existing test suite. Genuinely a gamechanger when writing unsafe code.
@iTakethingsapart4 ай бұрын
Another great tool is loom, which can be used to exhaustively check all possible thread orderings in a multithreaded test suite - this can verify the correctness of concurrent data structures so you can rely on their synchronization while using unsafe.
@CEOofGameDev5 ай бұрын
one thing I think you could have mentioned: Even when writing a good chunk of unsafe code in rust, the LSP rust-analyzer does a pretty good job of giving you a whole lot of warnings when you're trying to do the more "questionable" things you can do inside an unsafe block, it really is a powerful tool to avoid undefined behavior.
@nordgaren23585 ай бұрын
If anyone wants to do more reading on this, "Rust for Rustaceans" by Jon Gjengset has a fantastic section on unsafe Rust. The rest of the book is also great!
@Speykious5 ай бұрын
Since you mentioned you have never played with Miri, I'll take this opportunity to say that Miri immediately detects the use-after-free that cve-rs generates despite the fact that it's exploiting a compiler bug. :D
@9SMTM65 ай бұрын
From what I know, the windows crate is a gigantic crate in terms of code size, mostly since it's all generated from windows interface definitions, for all possible windows APIs you could think of (of which there are far more than of eg the linux kernel, since Windows APIs are concerned with more than just the kernel, and also Windows retains backward compatibility for far longer). So yeah, combine that with it being fundamentally FFI calls with a C (like) ABI, it's not really that remarkable that it has the most uses of unsafe of all crates.
@dubstepaztec35735 ай бұрын
Is it possible to have a useful system level lang where you can’t do anything unsafe? So couldn’t deref raw pointers, allocate mem on the heap, etc. I thought the rust unsafe keywords purpose was to create safe wrappers around inherently unsafe code like a vectors get method which is safe because even though it’s trying to read a pointer at any index, it returns None if it’s out of bounds creating a safe interface around a unsafe thing (reading a raw pointer at any index). I just don’t think it’s possible to have a truly 100% memory safe system lang
@kylek.36895 ай бұрын
No, it's not possible. A lot of system architectures have memory mapped IO registers at a particular address, just being able to create and use a raw pointer to one of those registers is a requirement for systems language.
@pxolqopt35975 ай бұрын
That's the thing people forget. The point of unsafe blocks is you create a safe wrapper around unsafe code that cannot cause any memory unsafety when used in safe code. If your program segfaults the only possible reason are unsafe blocks which are very clearly marked
@rj7250a5 ай бұрын
@@kylek.3689yep. Computers are intrinsically unsafe. You always need to deal with stuff that you do not know if it's safe, like doing IO.
@LtdJorge4 ай бұрын
@@pxolqopt3597Exactly. The Rust stdlib uses a lot of unsafe under the hood, exposing mostly the safe parts.
@Jason96373 ай бұрын
Unsafe just means the compiler can't guarantee its correctness, you just need to manually and carefully examine the code to make sure it's safe. Everything not marked unsafe in std is safe to use, even if it uses unsafe internally
@oleg676645 ай бұрын
"34.35% of crates make a direct function call into another crate that uses the unsafe keyword" - remember tokio has to use unsafe to make use of the context api which is necessary for async runtimes. Additionally, if you're doing anything with Pin, you pretty much have to use pin_project or something similar, which has unsafe under the hood as well. BTW there is an interesting question of methodology: let's consider crate like pin_project: the crate itself just exports a macro and doesn't contain any unsafe code by itself, but the code the macro expands to does contain unsafe, how is it counted? Does the crate using pin_project contain unsafe according to this methodology?
@andrewdunbar8285 ай бұрын
Starts off implying that the 'unsafe' keyword stops the borrow checker. Hmm... OK the rest of the video turned out much better than that opening laid out. Zig is my chosen language the past few months but I wouldn't classify it as a memory safe language in the same category as Rust, VM languages, and scripting languages. It's more memory safe out of the box than C, sure, but that's not the same thing.
@4115steve5 ай бұрын
I took your advice on learning c then rust a while ago and it was a great decision, thanks for all the mega cool videos
@Mallchad4 ай бұрын
Unsafe isn't actually unsafe. My disappointment is immeasurable. and my day is ruined. I will now learn rust and use unsafe everywhere. _I hope you're happy._
@Yotanido5 ай бұрын
The only reason you like Rust is the safety? Hmm... I honestly don't care all that much about the whole safety thing. It's everything else I really like. Sum types, blocks as expressions, traits, etc. It's like the language was designed for me, I like (almost) everything about it. It also has all the features I've been wanting in other languages (most notably sum types and powerful pattern matching/destructuring)
@MagicGonads5 ай бұрын
Yes, coming from dynamic typing and haskell background, not having proper sum types (*tagged* unions enabling pattern matching and overloading) in other languages often annoys me (especially when inheritance is overused).
@collin45555 ай бұрын
As a Scala dev, you are appealing to me now
@Jason96373 ай бұрын
What I love is how powerful the type system is. You can encode every possible si unit, do dimensional analysis at compile time, and all with zero runtime cost!
@Crcs-19975 ай бұрын
My bias is leaning towards zig. While still generally memory safe, it feels much more ergonomic than rust. But I can acknowledge that I should do some more bigger projects in rust to get a better idea. I think zig is the perfect bridge from c to the modern world
@blindshellvideos5 ай бұрын
excpet that zig sucks. zig users also called ziggers are idiot who dont know C and dont know rust so they learn the useless language that is never used so their garbage subhumen code cannot be audited because no one uses it.
@ZenonLite5 ай бұрын
Totally agree. I definitely find to be Zig more ergonomic than Rust. Though that may be because Rust is supposed to replace C++, while Zig is supposed to replace C.
@ataractic5 ай бұрын
@@ZenonLite Zig replacing C and Rust replacing C++ is just marketing. Both have their own pros and cons for different usages.
@tinrab5 ай бұрын
Memory safety isn't Rust's top feature, imo. There are a ton of things in Rust that make it easier to work with.
@danwellington35715 ай бұрын
@@tinrabYeah memory safety is an extremely basic and bare-minimum feature Now, enums and errors-as-values? Incredible
@arthurmoore94885 ай бұрын
I'm not surprised at that number. Heck, I'm surprised it's not higher. Even syscalls are an FFI, so must be considered unsafe. I have a feeling that the Rust devs have "cheated" some with some of the basic syscalls, so that the number isn't closer to 100%.
@linguinelabs5 ай бұрын
I didn't know Sza was concerned with software safety, makes sense since she wrote ghost in the machine
@alexpyattaev4 ай бұрын
A lot of unsafe exists in mutable iterators, simply because borrow checker is too restrictive. A container that is otherwise 100% safe, would still require unsafe for a mutable iterator.
@TacticalFluke094 ай бұрын
I mostly exist in high-level data wrangling land, but this channel has been extremely interesting to me. Thanks for breaking it all down for us!
@asdfghyter5 ай бұрын
15:42 why do you describe zig as a memory safe language (or a language that tastes like it's memory safe)? The first zig program I wrote segfaulted because I was careless with pointers. Is zig even in any way safer than C++? Both have tools to help guide you towards safer patterns, but neither compiler actually verifies that you use them correctly. Don't get me wrong, zig is an excellent language and a huge upgrade safetywise over C, but clumping it with memory-safe languages is a stretch
@AK-vx4dy5 ай бұрын
Is not safe in sense of Rust but has defer and also you must opt-in for null pointers so good start over C, but using pointers you can always shoot the foot off 😅
@asdfghyter5 ай бұрын
@@AK-vx4dy yeah, I guess not having null pointers by default is an upgrade over C++. C++ has RAII just like Rust, which fills the same role as defer most of the time. overall, it seems to me like idiomatic C++ would be around as safe as idiomatic zig, but I'm probably missing something important?
@AK-vx4dy5 ай бұрын
@@asdfghyter I wrote C not C++, I don't know full posibilties of zig, I wrote what I remember. And comment was about Zig. But generally zig and idiomatic c++ should be comparable. But I and many people see zig more like current era C replacement.
@asdfghyter5 ай бұрын
@@AK-vx4dy yes, absolutely, I was the one who started talking about C++ in my top level comment. There's no doubt that Zig is safer than C, but the question I asked in my first comment is if it's any safer than C++ and if C++ level safety is the standards that LLL means when he says "tastes like it's memory safe"
@AK-vx4dy5 ай бұрын
@@asdfghyter maybe difference is in defaults, starting with that you can literally or just in style write C inside C++, and maybe get warnings, maybe zig directs people to safer paths just by language construction and less safer path need more work to use them and clarity (no behind scene magic), but you must ask LLL himself ;)
@timonix24 ай бұрын
How does rust work for microcontrollers? Writing to memory has inherent side effects that the compiler can't know about. It feels hard to have memory safe code if the memory goes and changes values when you aren't looking
@skeetskeet94034 ай бұрын
@@timonix2 you handle it the same way you do in any other language, volatile operations, and not creating any references to that memory.
@MikeyMacc5 ай бұрын
I'd like to see how much rust isn't the external api type unsafe. Those external calls can eventually be made safe as more things are ported.
@Ash-qp2yw5 ай бұрын
I'd love to see a discussion on modern c++, and how that counts as safe or not, or how to write safer c++
@NotherPleb5 ай бұрын
The MIRI tool is a must when writing unsafe. Unsafe rust is not C, it's harder because you need to uphold more invariants
@BinderTronics5 ай бұрын
If ever Rust "how to" didn't sound like a cult recruitment drive I'd be more likely to adopt it. The problem with "safe" C is that is not taught. 5:00 willing too bet that 90% of the 70% is not validating an external input.
@eltreum15 ай бұрын
Or dealing with people that makes stack overflow feel loving. I'm fuzzy on the numbers but input sanitation and process chain validation for fault tolerance would be top 10 culprits.
@Holobrine5 ай бұрын
You know what would be cool? If the OS running the executable could tell you which unsafe block it was in when something crashed, because the compiler left them all labeled and it tracks every time an unsafe block is entered
@donovan63205 ай бұрын
That's what a debugger is for
@juh9870_projects4 ай бұрын
Sadly, this is not always possible. An unsafe block might not cause a crash outright, but might instead put your application into a UB state, which would lead to a crash at a future point. As an example, it may create a NonZero which actually has a zero value, and crash will only happen when some other code expects that value to be non-zero.
@Nonsense_thepodcast4 ай бұрын
I dont think Rust is more difficult than C/C++, I think they are on the same level of difficulty, I think though that C/C++ is a more stable foundation to begin learning because of Rust's more "modern" features.
@rndszrvaltas2 ай бұрын
Does any actual "C/C++" programmer refer to these languages as one unit?
@somedooby5 ай бұрын
There's another Undefined Behavior detection tool called Rudra, which the team used to detect UB and submit CVEs for numerous crates. It's based on a specific version of nightly Rust though, and needs some updating. It still works on crates that can be compiled with its Rust version
@Ellefsen974 ай бұрын
I feel like there's a similar mental reminder with requiring to explicitly define an unsafe block that happens when forcing to handle errors. By forcing developers to actively do something, it reminds us that something can go wrong.
@sharperguyАй бұрын
Unsafe is sort of a misnomer. You could call it "unchecked" code. Meaning, code that the rust compiler can't check, to see if it is safe or not. So if a certain C function will crash if you pass in an uninitialized struct, rust cannot check for you if it is initialized or not. So you typically write a wrapper around these calls, so you can assume that everything you do with the wrapped API is safe, assuming there isn't a bug in the wrapper code.
@F_Around_and_find_out4 ай бұрын
Started with Python. Studying C now using the Zig compiler to compile C code. Rust may have the spotlight but Zig is pretty awesome too and easy to work with.
@shadamethyst12585 ай бұрын
Miri is valgrind on steroids, it's an amazing tool
@ferdynandkiepski50264 ай бұрын
Most of the top crates use unsafe as that's the only way to get all the performance. As such most likely a lot of the code you use will have unsafe in the libraries used. And that's fine.
@irlshrek4 ай бұрын
I love rust. The whole memory safety thing makes the compiler intimately familiar with your code so you get *correctness* for free. Correctness being how accurately the contacts you've defined operate by the rules you intend for them to follow.
@WiseWeeabo5 ай бұрын
what it does is give you a "standard" to follow when it comes to the question of memory which is better than C which has no standards or principles or guidelines in regards to memory management
@Z3rgatul5 ай бұрын
Rust has more videos on KZbin than actual lines of code working in production
@supercellodude5 ай бұрын
Is Rust the next white-paper ingredient to replace Haskell?
@collin45555 ай бұрын
The fewer live lines of code, the fewer points of failure
@disieh5 ай бұрын
I still think the best motivation for learning a non-C language is when you wrote your umpteenth vector-like library and still find valgrind issues in it. The university I went to IMHO taught C the correct way. Any and all exercises had 10 tries, all of them had to compile without warnings and had to have zero valgrind issues. If you didn't pass in 10 tries, too bad, try again next year. I still remember some people literally bursting into tears while doing the exercises in a computer room.
@Speykious5 ай бұрын
*CVE-RS MENTIONED* 🗣️🔥🚀
@first-thoughtgiver-of-will24564 ай бұрын
Run Cargo-Geiger on your favorite crate that has substantial dependencies. Rust still builds superior software and the abstractions possible in the syntax are extremely underrated (traits, blanket impls, macros etc) as a consideration for the languages value. Theres a lot to be done in language research and Rusts ambitions have definitely left some syntactic loose ends but having gone back and Forth from Rust to C etc. Rust is objectively better for what it sets out to accomplish.
@jagagemo81415 ай бұрын
I wonder how much of unsafe rust is for embedded system calls.
@Sluggernaut4 ай бұрын
Rust, not Zig, is the future of safe and reliable software? Dang it. I just started learning a bit of zig...
@noctisatrae72815 ай бұрын
You should really put a timestamp for people who know what is the concept of Rust! Because the beginning of the video was so boring to me: I use Rust a lot so I just wanted your insight on the report! good vid tho
@LewisCampbellTech3 ай бұрын
You need unsafe for things I consider fairly safe in rust - ie, casting a struct to a byte slice, even if the struct implements Copy.
@captainfordo14 ай бұрын
100% "safe Rust" is not safe by any reasonable definition of the word "safe."
@EduardKaresli4 ай бұрын
I think the amount of Rust unsafe calls might decrease in the future if developers put an effort to rewrite those crates that use unsafe to make calls to foreign functions. For example, I think most crates that deal with database connections, Vulkan API binding, OpenGL binding, device drivers etc are written in C/C++, not in Rust, so if these API bindings get re-written in Rust then this will reduce the amount of unsafe calls. 🤔
@Veptis4 ай бұрын
"not calling destructors is consider safe - because memory leakage is considered safe" I am developing a python library and it's main dependency is another library that's basically python bindings for a rust backend via ffi. Bug I run into tons of rust panics or hangs. And it's not trivially understood or even debugged. So I might need to really learn rust to fix some bugs up-up-up-upstream. Some of my code is really awful because I am constantly cresting new descriptors and stuff because nothing seems to be reused, mutable or even just pointing correctly. But its graphics programming so the rules change quite a bit.
@woosix77354 ай бұрын
As a formal methods fanatic, we could benefit greatly from logic and proof system for safety inside unsafe blocks
@arkeynserhayn83704 ай бұрын
You are going to LOVE ATS.
@woosix77354 ай бұрын
@@arkeynserhayn8370 whats that?
@Edregol5 ай бұрын
I'd Like to see a video on safety in Zig and how it fares compared to Rust.
@s.patrickmarino72895 ай бұрын
I am a new Rust programmer. How would I do this if I wanted to be safe in Rust. I have one master thread. I have 1023 threads that churn out lots and lots of numbers. I have a global structure called status. Each thread can read the structure. When a value in that structure is set to finished, each thread returns all of it's work. Only the master thread is intended to change it. The other thread just watch it to see the system status.
@pxolqopt35975 ай бұрын
Look up rust AtomicBool/u64/etc. Thread safe and much faster than mutex or rwlock
@DissyFanart5 ай бұрын
If it's just a bool and missing the value once is acceptable you could easily use unsafe rust to set the value, but if you want to avoid unsafe, atomics like atomicbool are thread safe and cost I believe one extra CPU instruction per read, which, on the scale of a ghz CPU, even 1024 threads aren't going to have a major performance impact over all from a single atomic
@pxolqopt35975 ай бұрын
@DissyFanart I am pretty sure atomic types don't cause any overhead on x86_64 cpus unless you use Ordering::SeqCst
@Turalcar5 ай бұрын
@@DissyFanart Depends on the architecture. In x86 most operations are already atomic. The ordering is mostly used so that the compiler doesn't mess it up.
@Salabar_5 ай бұрын
@@Turalcar UB in Rust language is UB regardless of the target architecture.
A slow, poorly optimized, memory hogging program is perfectly safe if it does exactly what you expect it to. Which it does if you use safe Rust
@a999g215 ай бұрын
@@tiranito2834 Crashing is well defined behaviour. Rust can't stop you from writing bad code.
@ForeverZer05 ай бұрын
@@tiranito2834 The term "memory safety" has an actual meaning in its context here. I don't even particularly like Rust, I went the Zig path myself, but this argument doesn't even make sense as a "gotcha" against Rust. I personally am not aware of a language that is immune to memory leaks, and AFAIK, no one has ever claimed that Rust is. I think too many people simply don't understand what "memory safety" means, which is evident my some of the replies here.
@335503361005 ай бұрын
WeakRef solves the leak
@FZs14 ай бұрын
@user-gi3mb3eu1m This refers to the "leakpocalypse" -- Rust was originally going to prevent memory leaks, but it turned out that it wasn't really possible to isolate them, and Rc (a reference counting pointer type) can always cause memory leaks when used incorrectly. So, safe code is allowed to leak memory.
@_mrgrak4 ай бұрын
c isnt the problem humans are the problem we just prefer to externalize blame accountability is the great filter love your videos
@hummel63644 ай бұрын
15:30 let's quote my professor regarding that: "Why do we use C? Because you need to learn how computers work. Once you are done here you can get yourself a job coding in Python, or C#, or any fancy language you want, but if you don't learn how computer memory and CPU cycles work, your code will be terrible."
4 ай бұрын
It's like people still using raw pointers in C++ because the second you use smart pointers everything breaks because they are safer and then all of the horrible practices that had been used don't work... and people moan that they are not good enough and continue using raw pointers. At least rust forces you to specify you are about to break things
@christopher86414 ай бұрын
Miri is an amazing tool. They keep a ledger on their github of bugs that they have found in prominent crates.
@pav50004 ай бұрын
Could you please cover cve-rs (a repo which contains some examples of how to corrupt memory in 100% safe Rust)? Would like to know how it works and how the Rust team will fix it.
@mrghosti35 ай бұрын
Love your vidoes and the way cover topics. Have you looked into Dynamic Linking (or Shared libraries) in Rust? Would like to hear more opinions about this. Personally it would interest me to have such functionality.
@jackfoster20284 ай бұрын
I have a unsafe macro in rust, and it's called trustme
@heavymetalmixer915 ай бұрын
I wonder how much Unsafe Rust is necessary for developing gamers on Windows, 'cause you need to use the Windows API often.
@techpriest47875 ай бұрын
MS does invest into Rust. The future is safe.
@heavymetalmixer915 ай бұрын
@@techpriest4787 Investing into Rust doesn't mean Windows is gonna be re-written in that language. Now more than ever Microsoft is focusing Windows in backwards-compatibility.
@suirad4life4 ай бұрын
Would love to see an unsafe rust vs zig video
@unforgiving6665 ай бұрын
Thanks. I'm about to start learning Rust
@WillbeMelek4 ай бұрын
SDR, Downgrade Attack (Changing LTE to GSM). Attacker collects your device information? For what? With Device ID can other attacks be performed? Push? Install? MITM apps? Keyloggers? What is the worst that can happen?
@jazzerbyte5 ай бұрын
How do they make Linux API calls in a Linux crate without as many unsafe instances as the Windows crate?
@nighteule5 ай бұрын
my guess is the linux API just has less functions than the win API, but I'm not sure
@knofi70525 ай бұрын
Sorry, but I will never give up the joy writing code in assembler. 😊
@MorningNapalm4 ай бұрын
There was an error in this video: line 69 is always good code.
@Audacity_694 ай бұрын
I will never accept tha CISA/DISA statement on code safe languages, not because I don't think its an important point to make, but just because it feels like a such a buck pass for the overall security issues in both public and private infosec applications not just within US infrastructure but outside of it as well.
@twstdelf4 ай бұрын
Are/would you consider adding Rust or Zig courses to the Low Level Academy in the future?
@daniellyons62695 күн бұрын
Could you talk about ARC, Automatic Reference Counting in Rust? Could you also compare it to Swift, (which is ARC by default, but recently allows opting into borrow checking)?
@_liminor5 ай бұрын
hey! would it be possible to ask you to have a longer VOD where you write the mentioned HTTP server say in rust and then try to break. basically just like you mentioned. I think it would have a really great learning value ...for me at least :)
@MagnaP4 ай бұрын
I'm thinking lately that my dream language would be something as simple of possible, like C with something like the built-in standard library of Python to back it up and perhaps some of its keywords (with, in and exceptions).
@imad67344 ай бұрын
rust std library also full of unsafe code. There’s no escaping unsafe even if you took away the c bindings
@filip0x0a985 ай бұрын
What do you think of the Ada programming language ? It provides a lot of tools for writing secure code too.
@AbhinavR-w6o5 ай бұрын
Name the one programming language for game, web, AI, OS, System design, App etc development and can C do it?
@devon93745 ай бұрын
Doesn't really exist from a practical standpoint. But I guess technically, its C++, hands down
@AbhinavR-w6o5 ай бұрын
@@devon9374 what about C it's good or bad than C++
@wormisgod5 ай бұрын
C and C++. In terms of getting stuff done, they are here, have always been here, and will always be here.
@Sluggernaut4 ай бұрын
Do real Rust programmers have to rely on non-rust code much (C++ libs and other external code)? And, if so, how much and I presume this negates a decent amount of safety. Edit: Just got to 12:50 or so and see this is particularly addressed. Sorry all.
@asificam15 ай бұрын
How much of the memory safety could be put into the C compiler like if there was a flag that would pause compilation and ask for confirmation when there something detectable like an allocation call without a free call? Obviously not the same as Rust, but if some safety could be imported as a harder version of a warning or a soft error (since it is still valid code, just bad code), maybe we could get some benefits in C or C++ as well.
@decky19905 ай бұрын
How do you know someone uses Rust? They tell you.
@rusi62195 ай бұрын
They harass you for no reason
@Little-bird-told-me5 ай бұрын
Why bother to learn a new language ZIG, where there are no string only arrays defined as [u8], string manipulation function are verbose and clunky, and memory allocators are different paradym. Sure there error handling "try syntax" is good. The complier is your enemy. When we already have Rust, why bother with zig ? or Go if you want to stay high level
@taquanminhlong5 ай бұрын
10:20 "you know that line 69 is an issue" 😂
@tdsdave4 ай бұрын
Would the compiled unsafe code be distinct from safe code , would the compiled protective mechanisms or their absence give away a section of a program that is unsafe. You talked of when auditing sources for unsafe key word your attention would be raised, I wonder if possible detecting the absence of the safety mechanisms in compiled code would also possibly be a red flag to a hacker, "here is where to start looking".
@skeetskeet94034 ай бұрын
@@tdsdave unsafe doesn't "disable safety mechanisms", it just allows the programmer to do 5 things that are fundamentally not statically verifiable to be safe, and that were covered the video.
@tdsdave4 ай бұрын
@@skeetskeet9403 Ah ok , never actually written a word in rust, let alone a program , as you say it was mentioned in the video, my brain fart , so its all a compiler safety net , without unsafe usage various expressions will generate errors and prevent compilation. Will look into it more, though direct de-referencing has me wondering still. Thanks.
@agentm105 ай бұрын
You know what's safe? "Hello World". Thread safe, memory safe and hack safe.
@mk72v2oq5 ай бұрын
It's actually not. In fact mere printing to stdout is a fairly complicated thing under the hood. And inherently not thread safe btw. Especially when you realize that stdin/stdout of your process can be manipulated from outside. It opens a way to a whole class of nasty hacks.
@DegenBren5 ай бұрын
Perfect! Because that's the only code I can write.
@@mk72v2oq lol, I was kidding, but I didn't mean printf to stdout or stderr, I just meant the string literally.
@FerrisMcLaren4 ай бұрын
I agree more with Jonathan Blow
@mintx17205 ай бұрын
I'm addicted to exotic unsafe dispatch please send help.
@gopallohar55344 ай бұрын
The most idiotic sentence is "Rust is not memory safe because we can write unsafe rust" It's like saying nail cutter isn't safe because it can cut my toung
@MyWatermelonz5 ай бұрын
The biggest problem with rust is the rust foundation.
@smoked-old-fashioned-hh7lo5 ай бұрын
true, but to be fair they haven't done anything bad in like a year. the trademark thing never even went through which a lot of people aren't even aware about
@rnts084 ай бұрын
And rust users
@9SMTM65 ай бұрын
Grammar nazi (if I'm actually right): I the opening you said 'and if that underpins Rusts security'. I think you meant to say undermines? AFAIK underpinning something is making it stronger.
@ahmoin5 ай бұрын
thank you, too many people keep glazing rust without understanding how rust is hard to learn and it can still be unsafe
@nordgaren23585 ай бұрын
It's not hard to learn, though. The argument of "it's still unsafe" is just "I don't want to wear a helmet while riding a motorcycle, because it's still unsafe"
@MaybeADragon5 ай бұрын
Rust really isn't hard to learn if you already know a statically typed language. Hard to master, very much so.
@hwstar94165 ай бұрын
@@MaybeADragon it's annoying to read and write, thus harder to learn for beginner.
@ahmoin5 ай бұрын
@@nordgaren2358 wearing a helmet is easy and doesnt require effort unlike writing safe code in rust. unrelated analogy
@kuhluhOG5 ай бұрын
there is even a repository which managed to create quite a few memory corruptions fully in safe Rust
@Archimedeeez5 ай бұрын
some think that crabs look like bugs
@some1and2975 ай бұрын
I mean I just really like rust because of auto complete and checking data types in my editor. Plus having the result type for methods is very nice.
@J-wm4ss5 ай бұрын
cargo check is slow if you're running it on every save though. it gets annoying
@woosix77354 ай бұрын
I have participated in an ai programming contest recently in rust, and was forced to use the unsafe « global static », which was( to my limited knowledge) the only way to store information between calls to to the player_turn function.
@josefjelinek5 ай бұрын
I think you are downplaying the language spec bug with the lifetime allowing "safe" rust to access released memory. The problem of having even convoluted way is that it is not expected and probably not possible to catch in reviews, so determined malicious contributors can eventually hijack complex projects with high probability where nobody expects that. Also IMHO, it is not as convoluted to not appear in code just by accident, when even inexperienced programmers are forced to use one of the most tedious and hard to understand feature of the language.
@georgerogers11665 ай бұрын
Miri will help with that.
@AK-vx4dy5 ай бұрын
Can you share link with what about you write here?
@josefjelinek5 ай бұрын
@@AK-vx4dy you can search for "cve-rs"
@rusi62195 ай бұрын
@@AK-vx4dyKZbin automatically deletes comments that feature links. But you already knew that - typical Rusty gaslighter.
@AK-vx4dy5 ай бұрын
@@rusi6219 I didn't know. You can provide some key words because through whole long comment, author of it strictly avoid naming thing....
@brandonthomas225 ай бұрын
unsafe = bad engineer or lazy developer who would rather use a package than write their own code (note difference between engineer and dev)
@tempname82635 ай бұрын
nice ironic joke lol
@AnIdiotAboard_5 ай бұрын
Yes its safe if you use it as intended. I hate to be a pain but when was the last time you used any language as it was intended??? Its my humble opinion that the definition of safe and unsafe languages is irrelevant, when the devoloper writing the code is more unsafe than typhoid mary!
@tablettablete1865 ай бұрын
Barriers are safe, despite being super easy to deadlock
@rusi62195 ай бұрын
Its called Rust because your ability to write decent code becomes incremntally rusty the more you code with Rust's training wheels
@dirlrido25224 ай бұрын
Dude please go outside, you've commenting dumb things in almost every thread
@Mempler4 ай бұрын
Rewrite rust in rust to make rust safe
@ItsCOMMANDer_4 ай бұрын
Whats unsafe about rust? The users mental state after using it.
@arson53044 ай бұрын
why
@ItsCOMMANDer_4 ай бұрын
@@arson5304 its rust :)
@ashwin372Ай бұрын
most embedded rust is in unsafe rust
@betottogonzalez779123 күн бұрын
@LowLevelTV will be a zig course in your academy?
@Monothefox5 ай бұрын
Gödel & Church strike again..
@AllahDoesNotExist5 ай бұрын
I just write straight in Assembly.
@tempname82635 ай бұрын
Why do you even need borrow-checker? Why is Rust so focused on limiting the code you write, to prevent one of the easiest to fix issues? In BeefLang for example, you have a leak checker. When you've got a reference that is fit for GC criteria, you get an error. As simple as that. And it's not like deallocating memory is that difficult or takes up so much code space (literally 8 characters or less)
@skeetskeet94034 ай бұрын
To statically ensure all references are valid. Why are you immediately referring to deallocating memory, that's handled by RAII, not the borrow checker.
@tempname82634 ай бұрын
@@skeetskeet9403 Because borrow checker complements RAII. Anyway, my point is, dancing around all these constraints during refactors is just pure self-imposed torture, which in rare cases demands you to completely switch to an unsafe context. Having semi-manual deallocation and checking resource validity at a debugtime is much more reasonable in my opinion, if your goal is to actually ship product.
@skeetskeet94034 ай бұрын
@@tempname8263 Well, I'm very glad that's your opinion. You asked what the point of a borrow checker is, I answered.